time.Time.unixSec (method)
13 uses
time (current package)
format.go#L1396: name, offset, _, _, _ := local.lookup(t.unixSec())
format.go#L1412: offset, ok := local.lookupName(zoneName, t.unixSec())
format_rfc3339.go#L146: if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
time.go#L189: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
time.go#L771: sec := t.unixSec()
time.go#L791: sec := t.unixSec()
time.go#L1397: name, offset, _, _, _ = t.loc.lookup(t.unixSec())
time.go#L1407: _, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
time.go#L1426: return t.unixSec()
time.go#L1435: return t.unixSec()*1e3 + int64(t.nsec())/1e6
time.go#L1444: return t.unixSec()*1e6 + int64(t.nsec())/1e3
time.go#L1454: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1557: } else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {